:root {
    --gradient-primary: linear-gradient(221deg, #0078f8 0%, #0941eb 110.58%);
    --gradient-secondary: linear-gradient(221deg, rgba(0, 120, 248, 0.2) 0%, rgba(9, 65, 235, 0.2) 110.58%);
    --gradient-tertiary: linear-gradient(221deg, rgba(0, 120, 248, 0.05) 0%, rgba(9, 65, 235, 0.05) 110.58%);
    --color-text-primary: #0c2737;
    --color-text-secondary: #6d6d6d;
    --color-text-placeholder: #8b8f95;
    --color-border: #d8d9db;
    --color-border-light: #e7efff;
    --color-white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}